home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-01-19 | 491 b | 28 lines |
- INSTALLDIR= $(HOME)/Apps/BackSpace.app
-
- DYNAVIEWS= BoinkSpaceView.BackO
-
- THINGSTOREMOVE= BoinkSpaceView.o
-
- .SUFFIXES: .m .o
- .m.o:
- cc -O -g -Wall -c $*.m -o $*.o
-
- all::
- $(MAKE) $(DYNAVIEWS)
-
- BoinkSpaceView.BackO: BoinkSpaceView.o BoinkSpaceView.h
- ld -x -r -o BoinkSpaceView.BackO BoinkSpaceView.o
-
- clean::
- rm -rf $(DYNAVIEWS) $(THINGSTOREMOVE)
-
-
- install:: all install-views
-
- install-views::
- mkdirs $(INSTALLDIR) && \
- for view in $(DYNAVIEWS); do \
- cp $$view $(INSTALLDIR); \
- done
-